home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-19 | 608 b | 23 lines | [TEXT/CWIE] |
- // =================================================================================
- // CGWorldPane.h ©1997 BB's Team Inc. All rights reserved
- // =================================================================================
-
- #pragma once
-
- #include <LPane.h>
-
- class CGWorldPane : public LPane {
- public:
- // Step 3 declare class_ID enum
- enum { class_ID = 'GwPn' };
-
- static CGWorldPane *CreateGWorldPaneStream( LStream *inStream );
- CGWorldPane( LStream *inStream );
- virtual ~CGWorldPane();
- virtual void SetGWorld (GWorldPtr);
-
- protected:
- GWorldPtr mGW;
- virtual void DrawSelf();
- };
-